Document Library for WinForms | ComponentOne
C1.Win.C1Document.4.8 Assembly / C1.Win.C1Document Namespace / Utils Class / Assign Method / Assign<T>(Object,T,T) Method
The type of destination object.
The owner object.
The source object.
The destination object.

In This Topic
    Assign<T>(Object,T,T) Method
    In This Topic
    Assigns all from another object.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub Assign(Of T As {New, ICloneableObject, IOwnedObject})( _
       ByVal owner As Object, _
       ByVal source As T, _
       ByRef dest As T _
    ) 
    public static void Assign<T>( 
       object owner,
       T source,
       ref T dest
    )
    where T: new(), ICloneableObject, IOwnedObject

    Parameters

    owner
    The owner object.
    source
    The source object.
    dest
    The destination object.

    Type Parameters

    T
    The type of destination object.
    See Also